chore: normalise line endings to LF per .gitattributes#100
Merged
Conversation
Six files were committed with CRLF but .gitattributes declares `* text=auto eol=lf`, so git perpetually flagged them as modified on any checkout (noisy `git status`, blocked fast-forwards). `git add --renormalize` converts them to LF. Pure line-ending change — zero content edits (verified each file has 0 changes under `git diff -w`). Affected: .editorconfig, CODE_OF_CONDUCT.md, LICENSE, NOTICE, docs/scripts/export-md.mjs, docs/scripts/export-pdf.mjs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Six files were committed with CRLF but
.gitattributesdeclares* text=auto eol=lf, so git perpetually flagged them as modified on every checkout — noisygit status, and it blocked clean fast-forward pulls.git add --renormalizeconverts them to LF.Pure line-ending change — zero content edits (each file verified to have 0 changes under
git diff -w).Affected:
.editorconfigCODE_OF_CONDUCT.mdLICENSENOTICEdocs/scripts/export-md.mjsdocs/scripts/export-pdf.mjsReview with
?w=1to see it's whitespace/EOL only.🤖 Generated with Claude Code